home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / geomview / sgi.lha / Geomview / tools / dirseq next >
Text File  |  1993-11-15  |  342b  |  24 lines

  1. #! /bin/sh
  2.  
  3. # usage: direq dir1 dir2
  4.  
  5. # test whether directories dir1 and dir2 are the same directory
  6.  
  7. # returns false if not, or if either is not a directory
  8.  
  9. dir1=$1
  10. dir2=$2
  11.  
  12. if [ ! -d $dir1 -o ! -d $dir2 ] ; then
  13.   exit 1;
  14. fi
  15.  
  16. path1=`(cd $dir1;/bin/pwd)`
  17. path2=`(cd $dir2;/bin/pwd)`
  18.  
  19. if [ "$path1" != "$path2" ] ; then
  20.   exit 1
  21. fi
  22.  
  23. exit 0
  24.